home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
CD Exchange
/
CD Exchange - Volume 1.iso
/
utils
/
misc
/
ace
/
ace-2.0.lha
/
PRGS.lha
/
ExternFunc
/
sub2.s
< prev
Wrap
Text File
|
1994-01-10
|
189b
|
11 lines
; subtract two short integers passed from ACE and return result in d0.
xdef _subtract
_subtract:
move.w 4(sp),d0 ; arg1
move.w 6(sp),d1 ; arg2
sub.w d1,d0 ; arg1-arg2
rts
end